{% extends "base.html" %} {% block title %}{{ post.title }}{% endblock %} {% block content %}

{{ post.title }}

{{ post.content }}

By {{ post.user.get_full_name() }} on {{ post.created_at.strftime('%a %b %d %Y, %I:%M %p') }}

Tags: {% for tag in post.tags %} {{ tag.name }} {% endfor %}
Cancel Edit
{% endblock %}